home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 9 / CU Amiga Magazine's Super CD-ROM 09 (1997)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-04].iso / initcd < prev    next >
Text File  |  1997-02-09  |  2KB  |  89 lines

  1. ; CUCD Init Script
  2. ;
  3. ; Set up assigns etc. both for users booting from the CD and from  HD
  4. ;
  5. ; Version 1.1 - Changed jpegtmp
  6. ;
  7. ; Version 1.2 - Added uninit option
  8. ;
  9.  
  10. If $CDInit EQ TRUE
  11.     If $CDBoot EQ TRUE          ; don't run UninitCD if booted from CD
  12.         echo "*NYou do not need to run InitCD when you have booted from the CD"
  13.         Quit
  14.         EndIf
  15.     set remass `RequestChoice "InitCD" "You have already run InitCD once.*NDo you wish to remove the assigns and paths added before?" "Remove|Cancel"`
  16.     If $remass EQ 1
  17.         execute UnInitCD
  18.         EndIf
  19.     Quit
  20.     EndIf
  21.  
  22. Assign CUCD: :
  23.  
  24. ; Set these assigns and paths only if not booting from CD
  25. IF $CDBoot NOT EQ TRUE
  26.     Run >NIL: RequestChoice "InitCD" "Setting up some assigns and paths to run software from the CD.*NIf you wish to remove the CD from the drive, run InitCD again,*Notherwise the icon will stay on the Workbench." " OK "
  27.     SetEnv CDInit TRUE
  28.     Assign Fonts: CUCD:Fonts ADD
  29.     Assign ENV:   CUCD:prefs/env-archive ADD
  30.     Assign Libs:  CUCD:Libs ADD
  31.     Assign L:     CUCD:L ADD
  32.     Assign S:     CUCD:S ADD
  33.     Path CUCD:C CUCD:System CUCD:Utilities CUCD:S CUCD:Rexxc ADD
  34.     EndIF
  35.  
  36. ; Set some system assigns
  37. Assign CLASSES:            CUCD:Classes ADD
  38. Assign tcpdldir:           CUCD:WWW
  39. Assign HTTPJ:              tcpdldir:http
  40. Assign VMEM:               T:                           ; For SuperView
  41. Assign GM:                 CUCD:System/GMPlay
  42.  
  43. ;BEGIN JPEG Codec
  44. Assign JPEGTMP: EXISTS >NIL:
  45. IF WARN
  46.     Assign JPEGTMP: "T:"
  47.     EndIf
  48. ;END JPEG Codec
  49.  
  50. ; Add paths
  51. Path GM: ADD
  52.  
  53. ; Set path to Delitracker Config.
  54. SetENV DeliConfig "CUCD:System/DeliTracker/DeliConfig"
  55.  
  56. ; Add MUI if no MUI installed.
  57. Assign MUI: EXISTS >NIL:
  58. IF WARN
  59.     Assign MUI:    CUCD:System/MUI
  60.     Assign Libs:   MUI:Libs ADD
  61.     Assign LOCALE: MUI:Locale ADD
  62.     EndIf
  63.  
  64.  
  65. ; start arexx
  66. SYS:System/RexxMast >NIL:
  67.  
  68. Run > NIL: CUCD:C/CenterTitles
  69.  
  70. ;BEGIN NewIcons
  71. Status >NIL: com=C:NewIcons
  72. If WARN
  73.     Run <NIL: >NIL: CUCD:C/NewIcons
  74.     CUCD:C/DefIcons
  75.     EndIf
  76. ;END NewIcons
  77.  
  78. ;BEGIN ClassAct
  79. CUCD:C/CAPrefs >NIL:
  80. ;END ClassAct
  81.  
  82. ; Set assigns and paths for programs on this CD
  83. :rexxc/rx :C/MakeAssigns
  84.  
  85. IF $CDBoot NOT EQ TRUE
  86.     LoadWB NEWPATH
  87.     EndIf
  88.  
  89.